Xbasic

OBJECT.FIND_AND_REPLACE Function

Syntax

.Find_and_replace()

Description

Displays the Find and Replace dialog.

Discussion

The <OBJECT>.FIND_AND_REPLACE() method applies to:

Browses (for <OBJECT> use either the <BROWSE> pointer or the name of the browse)
Forms (for <OBJECT> use either the <FORM> pointer or the name of the form)

The <OBJECT>.FIND_AND_REPLACE() method displays the Find and Replace dialog box. If the form has Change mode restricted, then only the Find tab appears.

Example

dim ptr as P
ptr = form.load("Customer Information")
ptr.show()
ptr.find_and_replace()

Limitations

Desktop applications only.

See Also